NumericFunctions.Power function
Returns a number raised to the specified power
Format
ANSI-SQL Format:
POWER( Base, Exponent )
ODBC Format:
{{ FN POWER( Base, Exponent ) }}
Remarks
Returns Base raised to the power Exponent.
Base can be any Integer or Real numeric expression.
Exponent can be any Integer or Real numeric expression, (but must not be negative if Base is zero).
POWER( 2, 3 )
{FN POWER( 2, 3 )}